Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update golang-packages #4401

Merged
merged 7 commits into from
Nov 18, 2024
Merged

fix(deps): update golang-packages #4401

merged 7 commits into from
Nov 18, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/adrg/xdg v0.5.2 -> v0.5.3 age adoption passing confidence require patch
github.com/fsnotify/fsnotify v1.7.0 -> v1.8.0 age adoption passing confidence require minor
github.com/getkin/kin-openapi v0.127.0 -> v0.128.0 age adoption passing confidence require minor
github.com/urfave/cli-docs/v3 v3.0.0-alpha5 -> v3.0.0-alpha6 age adoption passing confidence require patch
github.com/urfave/cli/v3 v3.0.0-alpha9.0.20241004184838-20ef97b2155a -> v3.0.0-alpha9.3 age adoption passing confidence require patch
github.com/xanzy/go-gitlab v0.112.0 -> v0.113.0 age adoption passing confidence require minor
go (source) 1.23.2 -> 1.23.3 age adoption passing confidence toolchain patch
golang.org/x/crypto v0.28.0 -> v0.29.0 age adoption passing confidence require minor
golang.org/x/net v0.30.0 -> v0.31.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.23.0 -> v0.24.0 age adoption passing confidence require minor
golang.org/x/sync v0.8.0 -> v0.9.0 age adoption passing confidence require minor
golang.org/x/term v0.25.0 -> v0.26.0 age adoption passing confidence require minor
golang.org/x/text v0.19.0 -> v0.20.0 age adoption passing confidence require minor
google.golang.org/grpc v1.67.1 -> v1.68.0 age adoption passing confidence require minor
google.golang.org/protobuf v1.35.1 -> v1.35.2 age adoption passing confidence require patch

Release Notes

adrg/xdg (github.com/adrg/xdg)

v0.5.3

Compare Source

Changelog
  • Updated xdg.SearchRuntimeFile to also look in the operating system's temporary directory for runtime files.
    This covers unlikely cases in which runtime files cannot be written relative to the base runtime directory either because it does not exist or it is not accessible, so xdg.RuntimeFile suggests the operating system's temporary directory as a suitable fallback location.
Internal
  • Improved package testing.
fsnotify/fsnotify (github.com/fsnotify/fsnotify)

v1.8.0

Compare Source

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#​619)
Changes and fixes
  • windows: fix behaviour of WatchList() to be consistent with other platforms (#​610)

  • kqueue: ignore events with Ident=0 (#​590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#​617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#​625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#​620)

  • inotify: fix panic when calling Remove() in a goroutine (#​650)

  • fen: allow watching subdirectories of watched directories (#​621)

getkin/kin-openapi (github.com/getkin/kin-openapi)

v0.128.0

Compare Source

What's Changed
New Contributors

Full Changelog: getkin/kin-openapi@v0.127.0...v0.128.0

urfave/cli-docs (github.com/urfave/cli-docs/v3)

v3.0.0-alpha6

Compare Source

What's Changed

Full Changelog: https://github.com/urfave/cli-docs/commits/v3.0.0-alpha.6

urfave/cli (github.com/urfave/cli/v3)

v3.0.0-alpha9.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.0.0-alpha9.2...v3.0.0-alpha9.3

v3.0.0-alpha9.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.0.0-alpha9.1...v3.0.0-alpha9.2

xanzy/go-gitlab (github.com/xanzy/go-gitlab)

v0.113.0

Compare Source

Breaking changes

What's Changed

New Contributors

Full Changelog: xanzy/go-gitlab@v0.112.0...v0.113.0

golang/go (go)

v1.23.3

grpc/grpc-go (google.golang.org/grpc)

v1.68.0: Release 1.68.0

Compare Source

Behavior Changes

  • stats/opentelemetry/csm: Get mesh_id local label from "CSM_MESH_ID" environment variable, rather than parsing from bootstrap file (#​7740)
  • orca (experimental): if using an ORCA listener, it must now be registered only on a READY SubConn, and the listener will automatically be stopped when the connection is lost. (#​7663)
  • client: ClientConn.Close() now closes transports simultaneously and waits for transports to be closed before returning. (#​7666)
  • credentials: TLS credentials created via NewTLS that use tls.Config.GetConfigForClient will now have CipherSuites, supported TLS versions and ALPN configured automatically. These were previously only set for configs not using the GetConfigForClient option. (#​7709)

Bug Fixes

  • transport: prevent deadlock in client transport shutdown when writing the GOAWAY frame hangs. (#​7662)
  • mem: reuse buffers more accurately by using slice capacity instead of length (#​7702)
  • status: Fix regression caused by #​6919 in status.Details() causing it to return a wrapped type when getting proto messages generated with protoc-gen-go < v1. (#​7724)

Dependencies

  • Bump minimum supported Go version to go1.22.7. (#​7624)
protocolbuffers/protobuf-go (google.golang.org/protobuf)

v1.35.2

Compare Source

Full Changelog: protocolbuffers/protobuf-go@v1.35.1...v1.35.2

Maintenance:

CL/623115: proto: refactor equal_test from explicit table to use makeMessages()
CL/623116: encoding/prototext: use testmessages_test.go approach, too
CL/623117: internal/testprotos/test: add nested message field with [lazy=true]
CL/624415: proto: switch messageset_test to use makeMessages() injection point
CL/624416: internal/impl: fix TestMarshalMessageSetLazyRace (was a no-op!)

User-visible changes:

CL/618395: encoding/protojson: allow missing value for Any of type Empty
CL/618979: all: implement strip_enum_prefix editions feature
CL/622575: testing/protocmp: document behavior when combining Ignore and Sort


Configuration

📅 Schedule: Branch creation - "before 4am" (UTC), Automerge - "before 4am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) November 18, 2024 00:09
Copy link
Contributor Author

renovate bot commented Nov 18, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 3 additional dependencies were updated

Details:

Package Change
golang.org/x/sys v0.26.0 -> v0.27.0
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 -> v0.0.0-20240903143218-8af14fe29dc1
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 -> v0.0.0-20240903143218-8af14fe29dc1

@qwerty287
Copy link
Contributor

There seems to be a problem with reusing commands for testing in urfave/cli: urfave/cli#2007

Copy link
Contributor Author

renovate bot commented Nov 18, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@woodpecker-bot
Copy link
Collaborator

woodpecker-bot commented Nov 18, 2024

Deployment of preview was torn down

@qwerty287
Copy link
Contributor

@woodpecker-ci/maintainers can someone approve my changes here? Esp. https://github.com/woodpecker-ci/woodpecker/pull/4401/files#diff-29e2af15c5cf8efb3577527a581ed5ebfc865345f4e52273ee08eccbab0b9513 and the corresponding tests. It does not work otherwise unfortunately, see urfave/cli#2007 (comment)

cli/pipeline/list.go Outdated Show resolved Hide resolved
@qwerty287 qwerty287 requested a review from xoxys November 18, 2024 15:53
@qwerty287 qwerty287 requested a review from 6543 November 18, 2024 16:16
@renovate renovate bot merged commit 78cc9eb into main Nov 18, 2024
7 of 13 checks passed
@renovate renovate bot deleted the renovate/golang-packages branch November 18, 2024 18:40
@woodpecker-bot woodpecker-bot mentioned this pull request Nov 18, 2024
1 task
@woodpecker-bot woodpecker-bot mentioned this pull request Dec 14, 2024
1 task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants